home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_013 / cardfi.correct < prev    next >
Text File  |  1992-05-06  |  662b  |  23 lines

  1. 1 rem  This is a correction of the CardFi.bas program further down in this
  2. 2 rem data library.  Ignore the message in line 0 and delete line 0. Use
  3. 3 rem this short routine instead to create the proper Index.him file on
  4. 4 rem your disk.  You can then delete this short program and the CardFile
  5. 5 rem program will run ok.  Sorry for the inconvenience.
  6. 6 rem
  7.   10 open "o",#1,"Index.him"
  8.   20 p$(1)="Address"
  9.   30 print#3,p$(1)
  10.   40 for j=2 to 7
  11.   50 p$(j)="Blank"+str$(j)
  12.   60 print#3,p$(j)
  13.   70 next j
  14.   80 close
  15. 90 rem The first thing you should do when running the program is create
  16. 95 your own address file and name it 'address' when saving it to disk.
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.